summaryrefslogtreecommitdiff
path: root/src/variable.cpp
blob: 3954ccdd44d9efcf45bff540dd92c2b741e06323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "variable.h"

Variable::Variable() :
	eType( Undef ),
	bNull( true ),
	iValue( 0 )
{
}

Variable::~Variable()
{
	if( eType == String )
		delete sValue;
}